home *** CD-ROM | disk | FTP | other *** search
- /*
- ** icsbase.h
- **
- ** definition of ICSBase
- **
- ** (C) Copyright 1997 Wolf Faust
- ** All Rights Reserved.
- */
-
- #ifndef ICS_ICSBASE_H
- #define ICS_ICSBASE_H
-
- #ifdef __MAXON__
- #ifndef EXEC_LIBRARIES_H
- #include <exec/libraries.h>
- #endif
- #else
- #ifndef EXEC_LIBRARIES
- #include <exec/libraries.h>
- #endif /* EXEC_LIBRARIES_H */
- #endif
-
- struct ICSBase
- {
- struct Library icsb_LibNode;
- APTR icsb_SegList;
- struct ExecBase *icsb_SysBase;
- struct IntuitionBase *icsb_IntuitionBase;
- struct GfxBase *icsb_GfxBase;
- struct DosLibrary *icsb_DOSBase;
- struct Library *icsb_GadToolsBase;
- struct Library *icsb_AslBase;
- struct Library *icsb_LocaleBase;
- struct Catalog *icsb_catalog;
- };
-
- #endif /* ICS_ICSBASE_H */
-